Product Code Database
Example Keywords: mobile -skirt $59
barcode-scavenger
   » » Wiki: Pearson Hashing
Tag Wiki 'Pearson Hashing'.
Tag

Pearson hashing is a non-cryptographic hash function designed for fast execution on processors with 8-bit registers. Given an input consisting of any number of bytes, it produces as output a single byte that is strongly dependent on every byte of the input. Its implementation requires only a few instructions, plus a 256-byte containing a of the values 0 through 255.

This hash function is a that uses an 8-bit substitution cipher implemented via the . An 8-bit has negligible cryptographic security, so the Pearson hash function is not cryptographically strong, but it is useful for implementing or as a , for which purposes it offers these benefits:

  • It is extremely simple.
  • It executes quickly on resource-limited processors.
  • There is no simple class of inputs for which (identical outputs) are especially likely.
  • Given a small, privileged set of inputs (e.g., for a ), the permutation table can be adjusted so that those inputs yield distinct hash values, producing what is called a perfect hash function.
  • Two input strings differing by exactly one character never collide. E.g., applying the algorithm on the strings ABC and AEC will never produce the same value.

One of its drawbacks when compared with other hashing algorithms designed for 8-bit processors is the suggested 256 byte lookup table, which can be prohibitively large for a small with a program memory size on the order of hundreds of bytes. A workaround to this is to use a simple permutation function instead of a table stored in program memory. However, using a too simple function, such as T[i] = 255-i, partly defeats the usability as a hash function as will result in the same hash value; using a too complex function, on the other hand, will affect speed negatively. Using a function rather than a table also allows extending the block size. Such functions naturally have to be , like their table variants.

The algorithm can be described by the following , which computes the hash of message  C using the permutation table  T:

'''algorithm''' pearson hashing '''is'''
    h := 0
     

    '''for each''' c '''in''' C '''loop'''
        h := T[ h '''xor''' c ]
    '''end loop'''
     

    '''return''' h
     

The hash variable () may be initialized differently, e.g. to the length of the data () modulo 256.


Example implementations

C#, 8-bit
public class PearsonHashing {
   public static byte Hash(string input)
   {
       byte[] T = { /* Permutation of 0-255 */ };
     

       byte hash = 0;
       byte[] bytes = Encoding.UTF8.GetBytes(input);
     

       foreach (byte b in bytes)
       {
           hash = T[hash ^ b];
       }
     

       return hash;
   }
     
}


See also
  • Non-cryptographic hash functions

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs